| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- import React from 'react';
- import { IUser, IUserHasId } from '@growi/core';
- import {
- NextPage, GetServerSideProps, GetServerSidePropsContext,
- } from 'next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import dynamic from 'next/dynamic';
- import { ShareLinkLayout } from '~/components/Layout/ShareLinkLayout';
- import GrowiContextualSubNavigation from '~/components/Navbar/GrowiContextualSubNavigation';
- import { Page } from '~/components/Page';
- import { CrowiRequest } from '~/interfaces/crowi-request';
- import { RendererConfig } from '~/interfaces/services/renderer';
- import { IShareLinkHasId } from '~/interfaces/share-link';
- import {
- useCurrentUser, useCurrentPagePath, useCurrentPathname, useCurrentPageId, useRendererConfig,
- useShareLinkId, useIsSearchServiceConfigured, useIsSearchServiceReachable, useIsSearchScopeChildrenAsDefault,
- } from '~/stores/context';
- import {
- CommonProps, getServerSideCommonProps, useCustomTitle, getNextI18NextConfig,
- } from '../utils/commons';
- const ShareLinkAlert = dynamic(() => import('~/components/Page/ShareLinkAlert'), { ssr: false });
- const ForbiddenPage = dynamic(() => import('~/components/ForbiddenPage'), { ssr: false });
- type Props = CommonProps & {
- shareLink?: IShareLinkHasId,
- isExpired: boolean,
- currentUser: IUser,
- disableLinkSharing: boolean,
- isSearchServiceConfigured: boolean,
- isSearchServiceReachable: boolean,
- isSearchScopeChildrenAsDefault: boolean,
- rendererConfig: RendererConfig,
- };
- const SharedPage: NextPage<Props> = (props: Props) => {
- useShareLinkId(props.shareLink?._id);
- useCurrentPageId(props.shareLink?.relatedPage._id);
- useCurrentPagePath(props.shareLink?.relatedPage.path);
- useCurrentUser(props.currentUser);
- useCurrentPathname(props.currentPathname);
- useRendererConfig(props.rendererConfig);
- useIsSearchServiceConfigured(props.isSearchServiceConfigured);
- useIsSearchServiceReachable(props.isSearchServiceReachable);
- useIsSearchScopeChildrenAsDefault(props.isSearchScopeChildrenAsDefault);
- const isNotFound = props.shareLink == null || props.shareLink.relatedPage == null || props.shareLink.relatedPage.isEmpty;
- const isShowSharedPage = !props.disableLinkSharing && !isNotFound && !props.isExpired;
- return (
- <ShareLinkLayout title={useCustomTitle(props, 'GROWI')} expandContainer={props.isContainerFluid}>
- <div className="h-100 d-flex flex-column justify-content-between">
- <header className="py-0 position-relative">
- {isShowSharedPage && <GrowiContextualSubNavigation isLinkSharingDisabled={props.disableLinkSharing} />}
- </header>
- <div id="grw-fav-sticky-trigger" className="sticky-top"></div>
- <div className="flex-grow-1">
- <div id="content-main" className="content-main grw-container-convertible">
- { props.disableLinkSharing && (
- <div className="mt-4">
- <ForbiddenPage isLinkSharingDisabled={props.disableLinkSharing} />
- </div>
- )}
- { (isNotFound && !props.disableLinkSharing) && (
- <div className="container-lg">
- <h2 className="text-muted mt-4">
- <i className="icon-ban" aria-hidden="true" />
- <span> Page is not found</span>
- </h2>
- </div>
- )}
- { (props.isExpired && !props.disableLinkSharing) && (
- <div className="container-lg">
- <h2 className="text-muted mt-4">
- <i className="icon-ban" aria-hidden="true" />
- <span> Page is expired</span>
- </h2>
- </div>
- )}
- {(isShowSharedPage && props.shareLink != null) && (
- <>
- <ShareLinkAlert expiredAt={props.shareLink.expiredAt} createdAt={props.shareLink.createdAt} />
- <Page />
- </>
- )}
- </div>
- </div>
- </div>
- </ShareLinkLayout>
- );
- };
- function injectServerConfigurations(context: GetServerSidePropsContext, props: Props): void {
- const req: CrowiRequest = context.req as CrowiRequest;
- const { crowi } = req;
- props.disableLinkSharing = crowi.configManager.getConfig('crowi', 'security:disableLinkSharing');
- props.isSearchServiceConfigured = crowi.searchService.isConfigured;
- props.isSearchServiceReachable = crowi.searchService.isReachable;
- props.isSearchScopeChildrenAsDefault = crowi.configManager.getConfig('crowi', 'customize:isSearchScopeChildrenAsDefault');
- props.rendererConfig = {
- isEnabledLinebreaks: crowi.configManager.getConfig('markdown', 'markdown:isEnabledLinebreaks'),
- isEnabledLinebreaksInComments: crowi.configManager.getConfig('markdown', 'markdown:isEnabledLinebreaksInComments'),
- adminPreferredIndentSize: crowi.configManager.getConfig('markdown', 'markdown:adminPreferredIndentSize'),
- isIndentSizeForced: crowi.configManager.getConfig('markdown', 'markdown:isIndentSizeForced'),
- plantumlUri: process.env.PLANTUML_URI ?? null,
- blockdiagUri: process.env.BLOCKDIAG_URI ?? null,
- // XSS Options
- isEnabledXssPrevention: crowi.configManager.getConfig('markdown', 'markdown:xss:isEnabledPrevention'),
- attrWhiteList: crowi.xssService.getAttrWhiteList(),
- tagWhiteList: crowi.xssService.getTagWhiteList(),
- highlightJsStyleBorder: crowi.configManager.getConfig('crowi', 'customize:highlightJsStyleBorder'),
- };
- }
- async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise<void> {
- const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired);
- props._nextI18Next = nextI18NextConfig._nextI18Next;
- }
- export const getServerSideProps: GetServerSideProps = async(context: GetServerSidePropsContext) => {
- const req = context.req as CrowiRequest<IUserHasId & any>;
- const { user, crowi } = req;
- const result = await getServerSideCommonProps(context);
- if (!('props' in result)) {
- throw new Error('invalid getSSP result');
- }
- const props: Props = result.props as Props;
- if (user != null) {
- props.currentUser = user.toObject();
- }
- const { linkId } = req.params;
- try {
- const ShareLinkModel = crowi.model('ShareLink');
- const shareLink = await ShareLinkModel.findOne({ _id: linkId }).populate('relatedPage');
- if (shareLink != null) {
- props.isExpired = shareLink.isExpired();
- props.shareLink = shareLink.toObject();
- }
- }
- catch (err) {
- //
- }
- injectServerConfigurations(context, props);
- // await injectUserUISettings(context, props);
- await injectNextI18NextConfigurations(context, props);
- return {
- props,
- };
- };
- export default SharedPage;
|